home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmSource
- BackColor = &H00FF0000&
- Caption = "The SOURCE Program"
- ClientHeight = 2460
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 7365
- Height = 2865
- Icon = SOURCE.FRX:0000
- Left = 1035
- LinkMode = 1 'Source
- LinkTopic = "Form1"
- ScaleHeight = 2460
- ScaleWidth = 7365
- Top = 1140
- Width = 7485
- Begin CommandButton cmdExit
- Caption = "E&xit"
- Height = 495
- Left = 120
- TabIndex = 1
- Top = 1920
- Width = 1215
- End
- Begin TextBox txtToDest
- Height = 855
- Left = 360
- MultiLine = -1 'True
- ScrollBars = 3 'Both
- TabIndex = 0
- Top = 960
- Width = 6735
- End
- Begin Label Label1
- Alignment = 2 'Center
- Caption = "The following text goes to DEST:"
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 13.5
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 495
- Left = 360
- TabIndex = 2
- Top = 240
- Width = 6735
- End
- Option Explicit
- Sub cmdExit_Click ()
- End
- End Sub
- Sub Form_Load ()
- ' Set the topic of the DDE
- frmSource.LinkTopic = "Dummy"
- End Sub
-